Micron Document
✓ NomadNet 1.4.2 released

🬤 rns.recipes


Markdown export · where-we-at-with-standalone-embedded-transport-nodes.md

Copy the block below or save it to a .md file.


# Where we at with standalone embedded transport nodes?

_Build Guides · started by 405nm on Wed, Sep 2, 2026 1:10 AM_

---

## Original post

**405nm** · Wed, Sep 2, 2026 1:10 AM

Hi everybody! I'm looking at setting up a solar transport node...

I got a Heltec v4 and a nice solar enclosure so that I could hopefully have it connected to my main machine via LocalInterface on my wifi, and then have the solar node on the roof sending and receiving LoRa.

I've not been keeping up with the forums much since around the time of the deletion of the Element group, what's the best/most user friendly way to do that these days from the software side? I remember the RTnode project, is there anything better?

Thanks!

---

## Reply 1

**Zenith** · Wed, Sep 2, 2026 1:33 AM

Atterman's microReticulum firmware can run as a Transport node and supports Heltec v4 boards
https://github.com/attermann/microReticulum_Firmware

You'll just need to do a slight change of the code with this patch if it is a Heltec v4, not needed on 4.3 boards though
https://github.com/attermann/microReticulum_Firmware/pull/111/changes
```
From 96db6d8938f654d924181fc0a5e695871d7fce14 Mon Sep 17 00:00:00 2001
From: Art Pelling <account@artpelling.de>
Date: Mon, 17 Aug 2026 13:45:00 +0200
Subject: [PATCH] remove version guard

---
Remote.h | 3 ---
1 file changed, 3 deletions(-)

diff --git a/Remote.h b/Remote.h
index 12dad604..47cd981d 100644
--- a/Remote.h
+++ b/Remote.h
@@ -108,9 +108,6 @@ void wifi_remote_start_sta() {
}
WiFi.setMinSecurity(WIFI_AUTH_WPA2_PSK);
-#if ESP_ARDUINO_VERSION >= ESP_ARDUINO_VERSION_VAL(3, 0, 0)
- WiFi.setPmf(true, false); // capable, not required
-#endif
//WiFi.onEvent([](WiFiEvent_t event, WiFiEventInfo_t info) {
// printf("[WiFi] event=%d\n", event);
```

---

## Reply 2

**405nm** · Thu, Sep 3, 2026 5:25 AM

cool, thanks!

---